home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 (Alt) / MACD 5.bin / workbench / libs / script.lzh / script_0.4 / script.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-12-17  |  629 b   |  21 lines

  1. /*
  2.    script.h
  3. */
  4.  
  5. #ifndef _SCRIPT_H_
  6. #define _SCRIPT_H_
  7.  
  8. LONG Script_SetRexxVar (struct RexxMsg *msg, char *name, char *value);
  9. LONG Script_GetRexxVar (struct RexxMsg *msg, char *name, char **value);
  10.  
  11. struct ScriptContext *Script_AllocContext (void);
  12. void Script_FreeContext (struct ScriptContext *sc);
  13.  
  14. void Script_SetMsgContext (struct RexxMsg *msg, struct ScriptContext *sc);
  15. struct ScriptContext *Script_GetMsgContext (struct RexxMsg *msg);
  16.  
  17. LONG Script_SetStringVar (struct ScriptContext *sc, char *name, char *value);
  18. LONG Script_GetStringVar (struct ScriptContext *sc, char *name, char **value);
  19.  
  20. #endif /* _SCRIPT_H_ */
  21.